home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / local.mk.old < prev    next >
Text File  |  1990-02-15  |  9KB  |  341 lines

  1. #
  2. # Makefile for boot programs in general.
  3. # This is included by Makefile.boot after $(TM).md/md.mk is included
  4. # The following variables should be defined already:
  5. #    NAME        program to be created
  6. #    OBJS        object files from which to create it
  7. #    CLEANOBJS    object files to be removed as part of "make clean"
  8. #            (need not just be object files)
  9. #    SRCS        sources for dependency generation
  10. #    TM        target machine type for object files, etc.
  11. #    TM        target machine type for object files etc.
  12. #    MACHINES    list of all target machines currently available
  13. #    INSTALLDIR    place to install program
  14. #    LINKSTART    address at which the boot program should be linked.
  15. #
  16. # Optional variables that may be defined by the invoker:
  17. #    XAFLAGS        additional flags to pass to assembler
  18. #    XCFLAGS        additional flags to pass to linker
  19. #    DEPFLAGS    additional flags to pass to makedepend
  20. #    no_targets    if defined, this file will not define all of the
  21. #            basic targets (make, make clean, etc.)
  22. #    use_version    if defined, then this file will set things up
  23. #            to include a version number that is automatically
  24. #            incremented
  25. #
  26. # $Header: /sprite/src/boot/decprom/RCS/local.mk,v 1.2 90/02/15 02:39:25 rab Exp $
  27. #
  28.  
  29. #
  30. # The variables below should be defined in md.mk, but they are given
  31. # default values just in case md.mk doesn't exist yet.
  32. #
  33. HDRS        ?=
  34. OBJS        ?=
  35. SRCS        ?=
  36.  
  37. #
  38. # First define search paths for libraries, include files, lint libraries,
  39. # and even sources.
  40. #
  41. .PATH.h        :
  42. .PATH.h        : . $(TM).md /sprite/src/kernel/Include /sprite/src/kernel/Include/$(TM).md /sprite/src/kernel/dev /sprite/src/kernel/dev/$(TM).md /sprite/src/kernel/fs /sprite/src/kernel/fs/$(TM).md /sprite/lib/include /sprite/lib/include/$(TM).md 
  43. .PATH.ln    : /sprite/lib/lint
  44. .PATH.c        :
  45. .PATH.c        : $(TM).md
  46. .PATH.s        :
  47. .PATH.s        : $(TM).md
  48.  
  49. #
  50. # Important directories. 
  51. #
  52. MISCLIBDIR    = /sprite/lib/misc
  53. BINDIR        = /sprite/cmds.$(MACHINE)
  54.  
  55. #
  56. # System programs -- assign conditionally so they may be redefined in
  57. # including makefile
  58. #
  59. AS        ?= $(BINDIR)/as
  60. CC        ?= $(BINDIR)/cc
  61. CHGRP        ?= $(BINDIR)/chgrp
  62. CHMOD        ?= $(BINDIR)/chmod
  63. CHOWN        ?= $(BINDIR)/chown
  64. CP        ?= $(BINDIR)/cp
  65. CPP        ?= $(BINDIR)/cpp -traditional -$
  66. CTAGS        ?= $(BINDIR)/ctags
  67. ECHO        ?= $(BINDIR)/echo
  68. LD        ?= $(BINDIR)/ld
  69. LINT        ?= $(BINDIR)/lint
  70. MAKEDEPEND    ?= $(BINDIR)/makedepend
  71. MKVERSION    ?= $(BINDIR)/mkversion
  72. MV        ?= $(BINDIR)/mv
  73. RM        ?= $(BINDIR)/rm
  74. SED        ?= $(BINDIR)/sed
  75. TEST            ?= $(BINDIR)/test
  76. TOUCH        ?= $(BINDIR)/touch
  77. UPDATE        ?= $(BINDIR)/update
  78.  
  79. #
  80. # Several variables (such as where to install) are set based on the
  81. # TYPE variable.  Of course, any of these variables can be overridden
  82. # by explicit assignments.
  83. #
  84. TYPE        ?= boot
  85. INSTALLDIR    ?= /sprite/boot
  86. TMINSTALLDIR    ?= /sprite/boot/$(TM).md
  87.  
  88. #
  89. # Figure out what stuff we'll pass to sub-makes.
  90. #
  91. PASSVARS    = 'INSTALLDIR=$(INSTALLDIR)' 'TM=$(TM)' $(.MAKEFLAGS)
  92. #ifdef        XCFLAGS
  93. PASSVARS    += 'XCFLAGS=$(XCFLAGS)'
  94. #endif
  95. #ifdef        XAFLAGS
  96. PASSVARS    += 'XAFLAGS=$(XAFLAGS)'
  97. #endif
  98. #ifdef        NOBACKUP
  99. PASSVARS    += 'NOBACKUP=$(NOBACKUP)'
  100. #endif
  101.  
  102. #
  103. # Flags. These are ones that are needed by *all* boot programs. Any other
  104. # ones should be added with the += operator in the local.mk file.
  105. # The FLAGS variables are defined with the += operator in case this file
  106. # is included after the main makefile has already defined them...
  107.  
  108. #include     <tm.mk>
  109.  
  110. XCFLAGS        ?= -L/sprite/lib/$(TM).md
  111. XAFLAGS        ?=
  112. LINTFLAGS    ?= -m$(TM)
  113. INSTALLFLAGS    ?=
  114. LDFLAGS        ?=
  115. AFLAGS        += $(TMAFLAGS) $(XAFLAGS)
  116. CFLAGS        += $(TMCFLAGS) $(XCFLAGS) -I. -I$(TM).md  -DKERNEL \
  117.         -I../../kernel/Include/$(TM).md -I../../kernel/Include \
  118.         -I../../kernel/fs -I../../kernel/fs/$(TM).md \
  119.         -I../../kernel/dev -I../../kernel/dev/$(TM).md -DNO_PRINTF -O
  120.  
  121. # KERNELSTART is the absolute address at which the kernel expects to have
  122. # its code loaded.
  123. # LINKSTART is where the boot program is loaded into memory.  It has
  124. # to be loaded high enough so that the kernel image it loads does
  125. # not overwrite the boot program.  (If it does, it generally happens
  126. # as it zeros out the bss segment.  The PROM will abort with Exception 10
  127. # or something immediately after the boot program prints out the kernel sizes.)
  128. # BOOTDIR is the directory in which the boot things live.
  129. #
  130.  
  131. #if !empty(TM:Msun3)
  132. KERNELSTART    ?= 0x4000
  133. LINKSTART    ?= $(KERNELSTART:s/0x/b/)
  134. #else
  135. KERNELSTART    ?= 0x4000
  136. LINKSTART    ?= $(KERNELSTART:s/0x/b/)
  137. #endif
  138.  
  139. CFLAGS        += -DBOOT_CODE=0x$(LINKSTART) \
  140.         -DKERNEL_START=$(KERNELSTART) -DBOOTDIR=\"$(INSTALLDIR)\"
  141.  
  142.  
  143. #
  144. # The .INCLUDES variable already includes directories that should be
  145. # used by cc and other programs by default.  Remove them, just so that
  146. # the output looks cleaner.
  147.  
  148. #if empty(TM:Msun4)
  149. CFLAGS        += $(.INCLUDES:S|^-I/sprite/lib/include$||g:S|^-I/sprite/lib/include/$(TM).md$||g)
  150. #else
  151. CFLAGS        += $(.INCLUDES)
  152. #endif
  153.  
  154. #
  155. # Transformation rules: these have special features to place .o files
  156. # in md subdirectories, run preprocessor over .s files, etc.
  157. # There are no profile rules for boot programs because they aren't profiled.
  158. #
  159.  
  160. .c.o        :
  161.     $(RM) -f $(.TARGET)
  162.     $(CC) $(CFLAGS) -c $(.IMPSRC) -o $(.TARGET)
  163. .s.o    :
  164.     $(CPP) $(CFLAGS:M-[ID]*) -D$(TM) -D_ASM $(.IMPSRC) > $(.PREFIX).pp
  165.     $(AS) -o $(.TARGET) $(AFLAGS) $(.PREFIX).pp
  166.     $(RM) -f $(.PREFIX).pp
  167.  
  168. #
  169. # The following targets are .USE rules for creating things.
  170. #
  171.  
  172. #
  173. # MAKEBOOT usage:
  174. #    <program> : <objects> <libraries> MAKEBOOT
  175. #
  176. # Similar to MAKECMD, except it doesn't create the version.[ho] files,
  177. # and the variable LINKSTART is used to define where the boot program
  178. # gets loaded.
  179. #
  180. MAKEBOOT    :  .USE -lc
  181.     rm -f $(.TARGET)
  182.     $(LD) -N -e start -T $(LINKSTART) $(CFLAGS:M-L*) $(LDFLAGS) \
  183.         -o $(.TARGET) $(.ALLSRC:N-lc:Nend.o) -lc $(.ALLSRC:Mend.o)
  184.  
  185. #
  186. # MAKEINSTALL usage:
  187. #    install : <dependencies> MAKEINSTALL
  188. #
  189. # The program is installed in $(TMINSTALLDIR) and backed-up to
  190. # $(TMINSTALLDIR).old
  191. #
  192. #ifndef NOBACKUP
  193. BACKUP        = -b $(TMINSTALLDIR).old
  194. #else
  195. BACKUP        =
  196. #endif  NOBACKUP
  197.  
  198. MAKEINSTALL    : .USE
  199.     /sprite/admin.$(MACHINE)/makeboot $(TM).md/$(NAME) $(TMINSTALLDIR)/$(NAME)
  200.  
  201. #
  202. # MAKELINT usage:
  203. #    <fluff-file> : <sources to be linted> MAKELINT
  204. #
  205. # <fluff-file> is the place to store the output from the lint.
  206. #
  207. MAKELINT    : .USE
  208.     $(RM) -f $(.TARGET)
  209.     $(LINT) $(LINTFLAGS) $(CFLAGS:M-[ID]*) $(.ALLSRC) > $(.TARGET) 2>&1
  210.  
  211. #
  212. # MAKEDEPEND usage:
  213. #    <dependency-file> : <sources> MAKEDEPEND
  214. #
  215. # Generate dependency file suitable for inclusion in future makes.
  216.  
  217. MAKEDEPEND    : .USE
  218.     @$(TOUCH) $(DEPFILE)
  219.     $(MAKEDEPEND) $(CFLAGS:M-[ID]*) -m $(TM) -w60 -f $(DEPFILE) $(.ALLSRC)
  220.     @$(MV) -f $(DEPFILE) $(DEPFILE).tmp
  221.     @$(SED) -e '/^#/!s|^.|$(TM).md/&|' <$(DEPFILE).tmp > $(DEPFILE)
  222.     @$(RM) -f $(DEPFILE).tmp
  223.  
  224. #if !defined(no_targets) && defined(NAME)
  225. #
  226. # We should define the main targets (make, make install, etc.).  See the
  227. # mkmf man page for details on what these do.
  228. #
  229. LIBS            ?=
  230.  
  231. #
  232. # start.o must come first
  233. default            : $(TM).md/$(NAME)
  234. $(TM).md/$(NAME)    : $(TM).md/start.o $(OBJS:s/$(TM).md\/start.o//:s/makeBoot.o//) MAKEBOOT
  235.  
  236.  
  237. clean            :: .NOEXPORT tidy 
  238.     $(RM) -f $(TM).md/$(NAME) $(TM).md/$(NAME)$(PROFSUFFIX)
  239.  
  240. tidy            :: .NOEXPORT 
  241.     $(RM) -f $(CLEANOBJS) $(CLEANOBJS:M*.o:S/.o$/.po/g) \
  242.             y.tab.c lex.yy.c core \
  243.         $(TM).md/lint \
  244.         a.out *~ $(TM).md/*~ version.h gmon.out mon.out
  245.  
  246. DEPFILE = $(TM).md/dependencies.mk
  247.  
  248. depend            : $(DEPFILE)
  249. $(DEPFILE)        ! $(SRCS:M*.c) $(SRCS:M*.s) MAKEDEPEND
  250.  
  251.  
  252. #
  253. # For "install", a couple of tricks.  First, allow local.mk to disable
  254. # by setting no_install.  Second, use :: instead of : so that local.mk
  255. # can augment install with additional stuff.  Third, don't install if
  256. # TMINSTALLDIR isn't set.
  257. #
  258. #ifndef no_install
  259. #ifdef TMINSTALLDIR
  260. install            :: $(TM).md/$(NAME) installman MAKEINSTALL
  261. #else
  262. install            :: .SILENT
  263.     echo "Can't install $(NAME):  no install directory defined"
  264. #endif TMINSTALLDIR
  265. #endif no_install
  266.  
  267.  
  268. #if empty(MANPAGES)
  269. installman        :: .SILENT
  270.     echo "There's no man page for $(NAME).  Please write one."
  271. #elif !empty(MANPAGES:MNONE)
  272. installman        ::
  273.  
  274. #elif defined(INSTALLMAN)
  275. installman        :: .SILENT
  276.     $(UPDATE) -m 444 -l $(INSTALLMANFLAGS) $(MANPAGES) $(INSTALLMAN)
  277. #else
  278. installman        :: .SILENT
  279.     echo "Can't install man page(s): no install directory defined"
  280. #endif
  281.  
  282.  
  283. lint            : $(TM).md/lint
  284. $(TM).md/lint        : $(SRCS:M*.c) $(HDRS) $(LIBS:M-l*) MAKELINT
  285.  
  286.  
  287. mkmf            :: .SILENT
  288.     mkmf
  289.  
  290.  
  291. newtm            :: .SILENT
  292.     if test -d $(TM).md; then
  293.         true
  294.     else
  295.         mkdir $(TM).md;
  296.         chmod 775 $(TM).md;
  297.         mkmf
  298.     fi
  299.  
  300. #
  301. # No profiling for boot programs
  302. #
  303. #profile            : $(TM).md/$(NAME)$(PROFSUFFIX)
  304. #$(TM).md/$(NAME)$(PROFSUFFIX)    : $(OBJS:S/.o$/.po/g) $(LIBS:S/.a$/_p.a/g)
  305. #    $(RM) -f $(.TARGET)
  306. #    $(CC) $(CFLAGS) -pg -o $(.TARGET) $(.ALLSRC)
  307.  
  308.  
  309. tags            :: $(SRCS:M*.c) $(HDRS)
  310.     $(CTAGS) $(CTFLAGS) $(SRCS:M*.c)
  311.  
  312. #
  313. # No version header for boot programs
  314. #
  315. #version.h        :
  316. #    $(RM) -f version.h
  317. #    $(MKVERSION) > version.h
  318.  
  319. #include    <all.mk>
  320.  
  321. #endif no_targets && NAME
  322.  
  323. .MAKEFLAGS    : -C        # No compatibility needed
  324.  
  325. #include    <rdist.mk>
  326.  
  327. DISTFILES    ?=
  328.  
  329. dist        !
  330. #if defined(DISTDIR) && !empty(DISTDIR)
  331.     for i in Makefile local.mk $(TM).md/md.mk \
  332.         $(MANPAGES) $(SRCS) $(HDRS)
  333.     do
  334.     if $(TEST) -e $${i}; then
  335.         $(UPDATE)  $${i} $(DISTDIR)/$${i} ;else true; fi
  336.     done
  337. #else
  338.     @echo "Sorry, no distribution directory defined"
  339. #endif
  340.  
  341.